home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Almathera Ten Pack 3: CDPD 3
/
Almathera Ten on Ten - Disc 3: CDPD3.iso
/
fish
/
726-750
/
748
/
delitracker
/
rexx
/
dt_mainwin.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-03-18
|
291b
|
26 lines
/* DeliTracker - open/close MainWindow */
address 'rexx_DT'
options results
status G mwi
if result == "no" then do
openmainwin
end
else do
closemainwin
end
status G mwi
if result == "no" then do
say "Main Window is now closed..."
end
else do
say "Main Window is now open..."
end